home *** CD-ROM | disk | FTP | other *** search
- #ifndef POWERUP_PPCLIB_MEMORY_H
- #define POWERUP_PPCLIB_MEMORY_H
-
-
- /* Allocate Memory with the Pages marked as NOCACHE synchronisized
- on the PPC. This means the whole memory size which is allocated
- is aligned to 4k pages. So you better use Pools.
- */
-
- #define MEMF_NOCACHESYNCPPC (1L<<29) /* NoCache synchronized Pools */
-
- /* Allocate Memory with the Pages marked as NOCACHE synchronisized
- on the M68k. This means the whole memory size which is allocated
- is aligned to 4k pages. So you better use Pools.
- */
- #define MEMF_NOCACHESYNCM68K (1L<<30) /* NoCache synchronized Pools */
-
- #endif
-